.componentFAB {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 900;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}
.componentFAB--open {
    pointer-events: initial;
}
.componentFAB--hide {
    opacity: 0;
    visibility: hidden;
}

/* Container */
.componentFAB__container {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 902;
}

/* Container Positions */
.componentFAB__container--topRight {
    top: 40px;
    bottom: auto;
}
.componentFAB__container--topLeft {
    top: 40px;
    right: auto;
    bottom: auto;
    left: 40px;
}
.componentFAB__container--bottomLeft {
    right: auto;
    left: 40px;
}

/* Actions */
.componentFAB__actions {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
}

/* Actions Positions */
.componentFAB__actions--right {
    flex-direction: row;
}
.componentFAB__actions--bottom {
    flex-direction: column;
}
.componentFAB__actions--left {
    flex-direction: row-reverse;
}

/* Actions Item */
.componentFAB__actionsItem {
    position: relative;
}

/* Actions Item Button */
.componentFAB__actionsItem .componentFAB__actionsButtom {
    width: 40px;
    height: 40px;
    pointer-events: none;
}
.componentFAB--open .componentFAB__actionsItem .componentFAB__actionsButtom {
    opacity: 1;
    transform: scale(1);
}

/* Actions Item Positions */
.componentFAB__actions--right .componentFAB__actionsItem .componentFAB__actionsButtom {
    margin-bottom: 0;
    margin-left: 8px;
}
.componentFAB__actions--bottom .componentFAB__actionsItem .componentFAB__actionsButtom {
    margin-top: 8px;
    margin-bottom: 0;
}
.componentFAB__actions--left .componentFAB__actionsItem .componentFAB__actionsButtom {
    margin-right: 8px;
    margin-bottom: 0;
}

/* Actions Label */
.componentFAB__actionsLabel {
    position: absolute;
    top: 8px;
    right: 40px;
    display: block;
    max-width: 160px;
    padding: 4px 8px;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    color: #424242;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: default;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
    opacity: 0;
    transition: right 0.1s ease-in-out, left 0.1s ease-in-out, opacity 0.1s ease-in-out;
}

/* Actions Label Active State */
.componentFAB__actions--active .componentFAB__actionsLabel {
    right: 48px;
    opacity: 1;
}

/* Actions Label Disabled */
.componentFAB__actionsLabel--disabled {
    color: rgba(66, 66, 66, 0.5);
}

/* Actions Label Positions */
.componentFAB__actions--right .componentFAB__actionsLabel,
.componentFAB__actions--left .componentFAB__actionsLabel {
    display: none;
}
.componentFAB__actions--bottom .componentFAB__actionsLabel {
    top: auto;
    bottom: 8px;
}
.componentFAB__container--topLeft .componentFAB__actionsLabel,
.componentFAB__container--bottomLeft .componentFAB__actionsLabel {
    right: auto;
    left: 40px;
}
.componentFAB__container--topLeft .componentFAB__actions--active .componentFAB__actionsLabel,
.componentFAB__container--bottomLeft .componentFAB__actions--active .componentFAB__actionsLabel {
    left: 48px;
}

/* Actions Label Colors */
.componentFAB__actionsLabel--red {
    color: #eed704;
}
.componentFAB__actionsLabel--red.componentFAB__actionsLabel--disabled {
    color: rgba(214, 193, 0, 0.699);
}

/* Actions Buttom */
.componentFAB__actionsButtom {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: #fff;
    text-decoration: none;
    pointer-events: initial;
    background-color: #0966df;
    border-radius: 50%;
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

/* Actions Buttom Hover, Focus and Active States */
.componentFAB__actionsButtom:hover,
.componentFAB__actionsButtom:focus,
.componentFAB__actionsButtom:active {
    color: #fff;
    text-decoration: none;
}
.componentFAB__actionsButtom:hover {
    background-color: #d4a405;
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.componentFAB__actionsButtom:focus,
.componentFAB__actionsButtom:active,
.componentFAB__actions--active > .componentFAB__actionsButtom {
    background-color: #085ac5;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.componentFAB__actionsItem .componentFAB__actionsButtom {
    margin-bottom: 8px;
    opacity: 0;
    transform: scale(0.4);
    transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1);
}

/* Actions Buttom Active State */
.componentFAB__actions--active .componentFAB__actionsButtom {
    pointer-events: initial;
}

/* Actions Buttom Disabled */
.componentFAB__actionsButtom--disabled,
.componentFAB__actionsButtom--disabled:hover,
.componentFAB__actionsButtom--disabled:focus,
.componentFAB__actionsButtom--disabled:active {
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    background-color: #085ac5;
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14),
        0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

/* Actions Buttom Icon */
.componentFAB__actionsButtomIcon {
    font-size: 24px;
}
.componentFAB__actionsItem .componentFAB__actionsButtom .componentFAB__actionsButtomIcon {
    font-size: 16px;
}

/* Actions Buttom Tooltip */
.componentFAB__actionsButtomTooltip {
    position: absolute;
    top: 50%;
    right: 100%;
    max-width: 160px;
    padding: 4px 8px;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    color: #424242;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    visibility: hidden;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
    opacity: 0;
    transition: all 0.25s cubic-bezier(0, 0, 0.2, 1);
    transform: translate3d(0, -50%, 0);
}

/* Actions Buttom Tooltip Hover State */
.componentFAB__actionsButtom:hover .componentFAB__actionsButtomTooltip {
    visibility: visible;
    opacity: 1;
    transform: translate3d(-8px, -50%, 0);    
}

/* Actions Buttom Tooltip Disabled */
.componentFAB__actionsButtomTooltip--disabled {
    color: rgba(66, 66, 66, 0.5);
}

/* Actions Buttom Tooltip Positions */
.componentFAB__container--topLeft .componentFAB__actionsButtomTooltip,
.componentFAB__container--bottomLeft .componentFAB__actionsButtomTooltip {
    left: 0;
    transform: translate3d(100%, -50%, 0);
}
.componentFAB__container--topLeft .componentFAB__actionsButtom:hover .componentFAB__actionsButtomTooltip,
.componentFAB__container--bottomLeft .componentFAB__actionsButtom:hover .componentFAB__actionsButtomTooltip {
    transform: translate3d(calc(100% + 8px), -50%, 0);
}
.componentFAB__actions--right .componentFAB__actionsButtomTooltip,
.componentFAB__actions--left .componentFAB__actionsButtomTooltip {
    top: auto;
    left: auto;
    bottom: 100%;
    transform: translate3d(0, 0, 0);
}
.componentFAB__actions--right .componentFAB__actionsButtom:hover .componentFAB__actionsButtomTooltip,
.componentFAB__actions--left .componentFAB__actionsButtom:hover .componentFAB__actionsButtomTooltip {
    transform: translate3d(0, -8px, 0);
}
.componentFAB__container--topRight .componentFAB__actions--right .componentFAB__actionsButtomTooltip,
.componentFAB__container--topRight .componentFAB__actions--left .componentFAB__actionsButtomTooltip,
.componentFAB__container--topLeft .componentFAB__actions--right .componentFAB__actionsButtomTooltip,
.componentFAB__container--topLeft .componentFAB__actions--left .componentFAB__actionsButtomTooltip {
    top: 100%;
    bottom: auto;
    transform: translate3d(0, 0, 0);
}
.componentFAB__container--topRight .componentFAB__actions--right .componentFAB__actionsButtom:hover .componentFAB__actionsButtomTooltip,
.componentFAB__container--topRight .componentFAB__actions--left .componentFAB__actionsButtom:hover .componentFAB__actionsButtomTooltip,
.componentFAB__container--topLeft .componentFAB__actions--right .componentFAB__actionsButtom:hover .componentFAB__actionsButtomTooltip,
.componentFAB__container--topLeft .componentFAB__actions--left .componentFAB__actionsButtom:hover .componentFAB__actionsButtomTooltip {
    transform: translate3d(0, 8px, 0);
}

/* Actions Buttom Tooltip Colors */
.componentFAB__actionsButtomTooltip--red {
    color: #f44336;
}
.componentFAB__actionsButtomTooltip--red.componentFAB__actionsButtomTooltip--disabled {
    color: rgba(244, 67, 54, 0.5);
}

/* Overlay */
.componentFAB__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 901;
    background-color: rgba(0, 0, 0, 0.5);
    outline: 0;
}

/* Overlay Hidden */
.componentFAB[aria-hidden="true"] .componentFAB__overlay {
    animation: componentFABOverlayHidden 0.2s ease-out forwards;
}

/* Overlay Show */
.componentFAB[aria-hidden="false"] .componentFAB__overlay {
    animation: componentFABOverlayShow 0.2s ease-in forwards;
}

/* Overlay Animations */
@keyframes componentFABOverlayShow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes componentFABOverlayHidden {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
